home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 August: Tool Chest / Dev.CD Aug 94.toast / New System Software Extensions / OpenDoc A6 / OpenDoc Parts Framework / OPF / OS / FWGraphx / Include / FWGrDef.h < prev    next >
Encoding:
Text File  |  1994-04-21  |  1.0 KB  |  46 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWGrDef.h
  4. //    Release Version:    $ 1.0d1 $
  5. //
  6. //    Creation Date:        3/28/94
  7. //
  8. //    Copyright:    © 1993, 1994 by Apple Computer, Inc., all rights reserved.
  9. //
  10. //========================================================================================
  11.  
  12. #ifndef FWGRDEF_H
  13. #define FWGRDEF_H
  14.  
  15. // ----- OpenDoc Includes -----
  16.  
  17. #if !defined(_QDFIX_) && defined(FW_BUILD_MAC)
  18. #include <QDFix.h>
  19. #endif
  20.  
  21. // ----- Platform Includes -----
  22.  
  23. #if !defined(__TYPES__) && defined(FW_BUILD_MAC)
  24. #include <Types.h>
  25. #endif
  26.  
  27. #if !defined(__QUICKDRAW__) && defined(FW_BUILD_MAC)
  28. #include <Quickdraw.h>
  29. #endif
  30.  
  31. #ifdef FW_BUILD_MAC
  32. typedef    Point         FW_SPlatformPoint;
  33. typedef    Rect        FW_SPlatformRect;
  34. typedef    RgnHandle    FW_PlatformRegion;
  35. typedef    PicHandle    FW_PlatformPict;
  36. #endif
  37.  
  38. #ifdef FW_BUILD_WIN
  39. typedef        POINT         FW_SPlatformPoint;
  40. typedef        RECT        FW_SPlatformRect;
  41. typedef        HRGN        FW_PlatformRegion;
  42. typedef        HMETAFILE    FW_PlatformPict;
  43. #endif
  44.  
  45. #endif
  46.